home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / text / tex / tpp410n.lha / TPPGlobal.lha / rexx / tpl / DVIPrintLog.tpl < prev    next >
Text File  |  1993-01-17  |  424b  |  23 lines

  1. /* DVIPrint Logfile - Macro */
  2. /* Kick 2.0 only */
  3.  
  4. options results
  5.  
  6. binary='C:Type'
  7. output='>"CON:0/16/700/440/DVIPrint Logfile/AUTO/WAIT/ALT/INACTIVE/SCREENTextPlus"'
  8. hailstring='DVIPrint Logfile'
  9.  
  10. address 'TextPlus'
  11.  
  12. fullname = 'T:DVIPrint.log'
  13.  
  14. 'RequestString' hailstring'\\'fullname
  15.  
  16. /* okay? */
  17. if result ~= "" then do
  18.    address command binary output fullname
  19.    end
  20. else
  21.    'Display' 'DVIPrint Logfile --- Abbruch'
  22.  
  23.